mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-15 00:23:56 +01:00
84 lines
1.8 KiB
Java
84 lines
1.8 KiB
Java
package cc.arduino.packages.contributions;
|
|
|
|
import org.junit.Test;
|
|
import processing.app.Platform;
|
|
|
|
import static org.junit.Assert.assertFalse;
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
public class HostDependentDownloadableContributionTest {
|
|
|
|
@Test
|
|
public void macOsXPositiveTest() {
|
|
HostDependentDownloadableContributionStub contribution = new HostDependentDownloadableContributionStub() {
|
|
@Override
|
|
public String getHost() {
|
|
return "x86_64-apple-darwin";
|
|
}
|
|
};
|
|
|
|
Platform platform = new Platform() {
|
|
@Override
|
|
public String getOsName() {
|
|
return "Mac OS X";
|
|
}
|
|
|
|
@Override
|
|
public String getOsArch() {
|
|
return "x86_64";
|
|
}
|
|
};
|
|
|
|
assertTrue(contribution.isCompatible(platform));
|
|
}
|
|
|
|
@Test
|
|
public void macOsXNegativeTest() {
|
|
HostDependentDownloadableContributionStub contribution = new HostDependentDownloadableContributionStub() {
|
|
@Override
|
|
public String getHost() {
|
|
return "x86_64-apple-darwin";
|
|
}
|
|
};
|
|
|
|
Platform platform = new Platform() {
|
|
@Override
|
|
public String getOsName() {
|
|
return "Linux";
|
|
}
|
|
|
|
@Override
|
|
public String getOsArch() {
|
|
return "amd64";
|
|
}
|
|
};
|
|
|
|
assertFalse(contribution.isCompatible(platform));
|
|
}
|
|
|
|
@Test
|
|
public void macOsXNegativeTest2() {
|
|
HostDependentDownloadableContributionStub contribution = new HostDependentDownloadableContributionStub() {
|
|
@Override
|
|
public String getHost() {
|
|
return "x86_64-apple-darwin";
|
|
}
|
|
};
|
|
|
|
Platform platform = new Platform() {
|
|
@Override
|
|
public String getOsName() {
|
|
return "Mac OS X";
|
|
}
|
|
|
|
@Override
|
|
public String getOsArch() {
|
|
return "i686";
|
|
}
|
|
};
|
|
|
|
assertFalse(contribution.isCompatible(platform));
|
|
}
|
|
|
|
}
|